home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / xep / imp.h < prev    next >
C/C++ Source or Header  |  1997-07-22  |  2KB  |  54 lines

  1.  
  2. /* $Id: imp.h,v 1.2 1997/07/09 13:56:54 pvmsrc Exp $ */
  3.  
  4. /*
  5.  *         PVM version 3.4:  Parallel Virtual Machine System
  6.  *               University of Tennessee, Knoxville TN.
  7.  *           Oak Ridge National Laboratory, Oak Ridge TN.
  8.  *                   Emory University, Atlanta GA.
  9.  *      Authors:  J. J. Dongarra, G. E. Fagg, M. Fischer
  10.  *          G. A. Geist, J. A. Kohl, R. J. Manchek, P. Mucci,
  11.  *         P. M. Papadopoulos, S. L. Scott, and V. S. Sunderam
  12.  *                   (C) 1997 All Rights Reserved
  13.  *
  14.  *                              NOTICE
  15.  *
  16.  * Permission to use, copy, modify, and distribute this software and
  17.  * its documentation for any purpose and without fee is hereby granted
  18.  * provided that the above copyright notice appear in all copies and
  19.  * that both the copyright notice and this permission notice appear in
  20.  * supporting documentation.
  21.  *
  22.  * Neither the Institutions (Emory University, Oak Ridge National
  23.  * Laboratory, and University of Tennessee) nor the Authors make any
  24.  * representations about the suitability of this software for any
  25.  * purpose.  This software is provided ``as is'' without express or
  26.  * implied warranty.
  27.  *
  28.  * PVM version 3 was funded in part by the U.S. Department of Energy,
  29.  * the National Science Foundation and the State of Tennessee.
  30.  */
  31.  
  32. /* describes an image canvas */
  33.  
  34. struct canvas {
  35.     Widget cn_wgt;            /* widget */
  36.     Window cn_win;            /* window */
  37.     int cn_wd;                /* image size */
  38.     int cn_ht;
  39.     u_char *cn_dat;            /* image data */
  40.     XImage *cn_xim;            /* ximage struct */
  41.     int cn_zoom;            /* display mag */
  42.     int cn_ox;                /* offset for zoom */
  43.     int cn_oy;
  44.     double cn_re1;            /* corner coords */
  45.     double cn_im1;
  46.     double cn_re2;
  47.     double cn_im2;
  48.     int cn_x1;                /* pick coords */
  49.     int cn_y1;
  50.     int cn_x2;
  51.     int cn_y2;
  52. };
  53.  
  54.